get screen size python

44

python get screen size -

from win32api import GetSystemMetrics

print("Width =", GetSystemMetrics(0))
print("Height =", GetSystemMetrics(1))

Comments

Submit
0 Comments